home *** CD-ROM | disk | FTP | other *** search
/ Turnbull China Bikeride / Turnbull China Bikeride - Disc 1.iso / ARGONET / PD / PROGRAMMING / DESKLIBC / SOURCES.ZIP / DeskLib / !DLSources / Libraries / Icon / DLL / MkOs
Text File  |  1995-09-04  |  13KB  |  497 lines

  1.  
  2. ObjectFiles    =        \
  3.             o.AlterValid    \
  4.             o.BarIcon    \
  5.             o.BarIconUse    \
  6.             o.ButtIsHeld    \
  7.             o.ClickWait    \
  8.             o.Deselect    \
  9.             o.DisposeInd    \
  10.             o.FileIcon    \
  11.             o.ForceWR    \
  12.             o.GetBgCol    \
  13.             o.GetDouble    \
  14.             o.GetFgCol    \
  15.             o.GetInteger    \
  16.             o.GetSelect    \
  17.             o.GetShade    \
  18.             o.GetText    \
  19.             o.GetTextPtr    \
  20.             o.IncDec    \
  21.             o.LoseCaret    \
  22.             o.printf    \
  23.             o.RadioInEsg    \
  24.             o.ScreenPos    \
  25.             o.SelctGroup    \
  26.             o.Select    \
  27.             o.SetCaret    \
  28.             o.SetCol    \
  29.             o.SetDouble    \
  30.             o.SetInteger    \
  31.             o.SetRadios    \
  32.             o.SetSelect    \
  33.             o.SetShade    \
  34.             o.SetText    \
  35.             o.SetTextRJ    \
  36.             o.Shade    \
  37.             o.ShadeGroup    \
  38.             o.Slider    \
  39.             o.StartDrag    \
  40.             o.Unshade    \
  41.             o.WhichRadio    \
  42.  
  43.  
  44. LibName        =    Icon
  45.  
  46.  
  47.  
  48. # Template makefile to make all .o files
  49. # for a DeskLib sublibrary. Compilation 
  50. # is for static linking inside a DLL.
  51.  
  52. # The macro $(ObjectFiles) should be set at the 
  53. # start of this file, to be a space-separated
  54. # list of object files.
  55. # This is done by 'Makatic'.
  56.  
  57. # The macro $(LibName) should also be set at the 
  58. # start of this file, to be the name of the 
  59. # DeskLib sublibrary.
  60.  
  61. # Compiler flags, These can be anything. 
  62. # All essential flags (eg CC -zM
  63. # are included in the macro $(CC).
  64. #
  65. CCFlags        =    -fahi $(CCExtra) -depend !Depend -throwback -D_DeskLib_$(LibName) -I,C:
  66. ASMFlags    =    -Stamp -NoCache -CloseExec -Quit $(ASMExtra)
  67.  
  68. CC        =    cc -c -zM -d_DLL -JC:DLLLib.,:mem $(CCFlags)
  69. ASM        =    ObjAsm $(ASMFlags)
  70.  
  71.  
  72. # -------------------------------------------------------
  73. # Everything below here should probably not be changed...
  74. # -------------------------------------------------------
  75.  
  76. # Here's what we want to make...
  77. #
  78. All:    $(ObjectFiles)
  79.  
  80.  
  81. # Rule for compiling C source code for a Straylight dynamically-linked library.
  82.  
  83. VPATH = @.^
  84.  
  85. .SUFFIXES:    .o .c .s
  86.  
  87. .c.o:
  88.     $(CC) -o $@ $<
  89.  
  90. .s.o:
  91.     $(ASM) $(ASMFlags) -from $< -to $@
  92.  
  93.  
  94.  
  95. # Dynamic dependencies:
  96. o.AlterValid:    ^.c.AlterValid
  97. o.AlterValid:    C:h.string
  98. o.AlterValid:    DeskLib:h.WimpSWIs
  99. o.AlterValid:    DeskLib:h.Core
  100. o.AlterValid:    C:h.stddef
  101. o.AlterValid:    C:DLLLib.h.dll
  102. o.AlterValid:    C:h.kernel
  103. o.AlterValid:    DeskLib:h.Wimp
  104. o.AlterValid:    DeskLib:h.Icon
  105. o.AlterValid:    DeskLib:h.DragASpr
  106. o.BarIcon:    ^.c.BarIcon
  107. o.BarIcon:    C:h.string
  108. o.BarIcon:    DeskLib:h.Wimp
  109. o.BarIcon:    DeskLib:h.Core
  110. o.BarIcon:    C:h.stddef
  111. o.BarIcon:    C:DLLLib.h.dll
  112. o.BarIcon:    C:h.kernel
  113. o.BarIcon:    DeskLib:h.WimpSWIS
  114. o.BarIcon:    DeskLib:h.Sprite
  115. o.BarIcon:    DeskLib:h.Coord
  116. o.BarIcon:    C:h.stdarg
  117. o.BarIcon:    DeskLib:h.Screen
  118. o.BarIcon:    DeskLib:h.SWI
  119. o.BarIcon:    DeskLib:h.Icon
  120. o.BarIcon:    DeskLib:h.DragASpr
  121. o.BarIconUse:    ^.c.BarIconUse
  122. o.BarIconUse:    C:h.string
  123. o.BarIconUse:    C:h.stdlib
  124. o.BarIconUse:    DeskLib:h.Wimp
  125. o.BarIconUse:    DeskLib:h.Core
  126. o.BarIconUse:    C:h.stddef
  127. o.BarIconUse:    C:DLLLib.h.dll
  128. o.BarIconUse:    C:h.kernel
  129. o.BarIconUse:    DeskLib:h.WimpSWIs
  130. o.BarIconUse:    DeskLib:h.Error
  131. o.BarIconUse:    DeskLib:h.Icon
  132. o.BarIconUse:    DeskLib:h.DragASpr
  133. o.ButtIsHeld:    ^.c.ButtIsHeld
  134. o.ButtIsHeld:    DeskLib:h.WimpSWIs
  135. o.ButtIsHeld:    DeskLib:h.Core
  136. o.ButtIsHeld:    C:h.stddef
  137. o.ButtIsHeld:    C:DLLLib.h.dll
  138. o.ButtIsHeld:    C:h.kernel
  139. o.ButtIsHeld:    DeskLib:h.Wimp
  140. o.ButtIsHeld:    DeskLib:h.Icon
  141. o.ButtIsHeld:    DeskLib:h.DragASpr
  142. o.ClickWait:    ^.c.ClickWait
  143. o.ClickWait:    DeskLib:h.Wimp
  144. o.ClickWait:    DeskLib:h.Core
  145. o.ClickWait:    C:h.stddef
  146. o.ClickWait:    C:DLLLib.h.dll
  147. o.ClickWait:    C:h.kernel
  148. o.ClickWait:    DeskLib:h.WimpSWIs
  149. o.ClickWait:    DeskLib:h.Time
  150. o.ClickWait:    DeskLib:h.Event
  151. o.ClickWait:    DeskLib:h.Icon
  152. o.ClickWait:    DeskLib:h.DragASpr
  153. o.Deselect:    ^.c.Deselect
  154. o.Deselect:    DeskLib:h.Wimp
  155. o.Deselect:    DeskLib:h.Core
  156. o.Deselect:    C:h.stddef
  157. o.Deselect:    C:DLLLib.h.dll
  158. o.Deselect:    C:h.kernel
  159. o.Deselect:    DeskLib:h.WimpSWIs
  160. o.Deselect:    DeskLib:h.Icon
  161. o.Deselect:    DeskLib:h.DragASpr
  162. o.DisposeInd:    ^.c.DisposeInd
  163. o.DisposeInd:    C:h.stdlib
  164. o.DisposeInd:    DeskLib:h.Wimp
  165. o.DisposeInd:    DeskLib:h.Core
  166. o.DisposeInd:    C:h.stddef
  167. o.DisposeInd:    C:DLLLib.h.dll
  168. o.DisposeInd:    C:h.kernel
  169. o.DisposeInd:    DeskLib:h.Icon
  170. o.DisposeInd:    DeskLib:h.DragASpr
  171. o.FileIcon:    ^.c.FileIcon
  172. o.FileIcon:    C:h.stdio
  173. o.FileIcon:    DeskLib:h.Wimp
  174. o.FileIcon:    DeskLib:h.Core
  175. o.FileIcon:    C:h.stddef
  176. o.FileIcon:    C:DLLLib.h.dll
  177. o.FileIcon:    C:h.kernel
  178. o.FileIcon:    DeskLib:h.WimpSWIS
  179. o.FileIcon:    DeskLib:h.Icon
  180. o.FileIcon:    DeskLib:h.DragASpr
  181. o.ForceWR:    ^.c.ForceWR
  182. o.ForceWR:    DeskLib:h.Wimp
  183. o.ForceWR:    DeskLib:h.Core
  184. o.ForceWR:    C:h.stddef
  185. o.ForceWR:    C:DLLLib.h.dll
  186. o.ForceWR:    C:h.kernel
  187. o.ForceWR:    DeskLib:h.WimpSWIs
  188. o.ForceWR:    DeskLib:h.Icon
  189. o.ForceWR:    DeskLib:h.DragASpr
  190. o.GetBgCol:    ^.c.GetBgCol
  191. o.GetBgCol:    DeskLib:h.Wimp
  192. o.GetBgCol:    DeskLib:h.Core
  193. o.GetBgCol:    C:h.stddef
  194. o.GetBgCol:    C:DLLLib.h.dll
  195. o.GetBgCol:    C:h.kernel
  196. o.GetBgCol:    DeskLib:h.WimpSWIs
  197. o.GetBgCol:    DeskLib:h.Icon
  198. o.GetBgCol:    DeskLib:h.DragASpr
  199. o.GetBgCol:    DeskLib:h.Validation
  200. o.GetBgCol:    DeskLib:h.Str
  201. o.GetBgCol:    C:h.stddef
  202. o.GetDouble:    ^.c.GetDouble
  203. o.GetDouble:    C:h.stdlib
  204. o.GetDouble:    DeskLib:h.Wimp
  205. o.GetDouble:    DeskLib:h.Core
  206. o.GetDouble:    C:h.stddef
  207. o.GetDouble:    C:DLLLib.h.dll
  208. o.GetDouble:    C:h.kernel
  209. o.GetDouble:    DeskLib:h.WimpSWIs
  210. o.GetDouble:    DeskLib:h.Icon
  211. o.GetDouble:    DeskLib:h.DragASpr
  212. o.GetFgCol:    ^.c.GetFgCol
  213. o.GetFgCol:    DeskLib:h.Wimp
  214. o.GetFgCol:    DeskLib:h.Core
  215. o.GetFgCol:    C:h.stddef
  216. o.GetFgCol:    C:DLLLib.h.dll
  217. o.GetFgCol:    C:h.kernel
  218. o.GetFgCol:    DeskLib:h.WimpSWIs
  219. o.GetFgCol:    DeskLib:h.Icon
  220. o.GetFgCol:    DeskLib:h.DragASpr
  221. o.GetFgCol:    DeskLib:h.Validation
  222. o.GetFgCol:    DeskLib:h.Str
  223. o.GetFgCol:    C:h.stddef
  224. o.GetInteger:    ^.c.GetInteger
  225. o.GetInteger:    C:h.stdlib
  226. o.GetInteger:    DeskLib:h.Wimp
  227. o.GetInteger:    DeskLib:h.Core
  228. o.GetInteger:    C:h.stddef
  229. o.GetInteger:    C:DLLLib.h.dll
  230. o.GetInteger:    C:h.kernel
  231. o.GetInteger:    DeskLib:h.WimpSWIs
  232. o.GetInteger:    DeskLib:h.Icon
  233. o.GetInteger:    DeskLib:h.DragASpr
  234. o.GetSelect:    ^.c.GetSelect
  235. o.GetSelect:    DeskLib:h.Wimp
  236. o.GetSelect:    DeskLib:h.Core
  237. o.GetSelect:    C:h.stddef
  238. o.GetSelect:    C:DLLLib.h.dll
  239. o.GetSelect:    C:h.kernel
  240. o.GetSelect:    DeskLib:h.WimpSWIs
  241. o.GetSelect:    DeskLib:h.Icon
  242. o.GetSelect:    DeskLib:h.DragASpr
  243. o.GetShade:    ^.c.GetShade
  244. o.GetShade:    DeskLib:h.Wimp
  245. o.GetShade:    DeskLib:h.Core
  246. o.GetShade:    C:h.stddef
  247. o.GetShade:    C:DLLLib.h.dll
  248. o.GetShade:    C:h.kernel
  249. o.GetShade:    DeskLib:h.WimpSWIs
  250. o.GetShade:    DeskLib:h.Icon
  251. o.GetShade:    DeskLib:h.DragASpr
  252. o.GetText:    ^.c.GetText
  253. o.GetText:    DeskLib:h.Wimp
  254. o.GetText:    DeskLib:h.Core
  255. o.GetText:    C:h.stddef
  256. o.GetText:    C:DLLLib.h.dll
  257. o.GetText:    C:h.kernel
  258. o.GetText:    DeskLib:h.WimpSWIs
  259. o.GetText:    DeskLib:h.Icon
  260. o.GetText:    DeskLib:h.DragASpr
  261. o.GetText:    C:h.string
  262. o.GetTextPtr:    ^.c.GetTextPtr
  263. o.GetTextPtr:    C:h.stdio
  264. o.GetTextPtr:    DeskLib:h.Wimp
  265. o.GetTextPtr:    DeskLib:h.Core
  266. o.GetTextPtr:    C:h.stddef
  267. o.GetTextPtr:    C:DLLLib.h.dll
  268. o.GetTextPtr:    C:h.kernel
  269. o.GetTextPtr:    DeskLib:h.WimpSWIS
  270. o.GetTextPtr:    DeskLib:h.Icon
  271. o.GetTextPtr:    DeskLib:h.DragASpr
  272. o.IncDec:    ^.c.IncDec
  273. o.IncDec:    C:h.stdlib
  274. o.IncDec:    DeskLib:h.Core
  275. o.IncDec:    C:h.stddef
  276. o.IncDec:    C:DLLLib.h.dll
  277. o.IncDec:    C:h.kernel
  278. o.IncDec:    DeskLib:h.Event
  279. o.IncDec:    DeskLib:h.Wimp
  280. o.IncDec:    DeskLib:h.Icon
  281. o.IncDec:    DeskLib:h.DragASpr
  282. o.IncDec:    DeskLib:h.Window
  283. o.IncDec:    DeskLib:h.WimpSWIs
  284. o.IncDec:    DeskLib:h.Pointer
  285. o.IncDec:    DeskLib:h.Core
  286. o.IncDec:    DeskLib:h.Icon
  287. o.IncDec:    DeskLib:h.Window
  288. o.IncDec:    DeskLib:h.Coord
  289. o.IncDec:    DeskLib:h.WimpSWIs
  290. o.LoseCaret:    ^.c.LoseCaret
  291. o.LoseCaret:    DeskLib:h.Wimp
  292. o.LoseCaret:    DeskLib:h.Core
  293. o.LoseCaret:    C:h.stddef
  294. o.LoseCaret:    C:DLLLib.h.dll
  295. o.LoseCaret:    C:h.kernel
  296. o.LoseCaret:    DeskLib:h.WimpSWIs
  297. o.LoseCaret:    DeskLib:h.Icon
  298. o.LoseCaret:    DeskLib:h.DragASpr
  299. o.printf:    ^.c.printf
  300. o.printf:    C:h.stdarg
  301. o.printf:    C:h.stdio
  302. o.printf:    C:h.string
  303. o.printf:    DeskLib:h.Wimp
  304. o.printf:    DeskLib:h.Core
  305. o.printf:    C:h.stddef
  306. o.printf:    C:DLLLib.h.dll
  307. o.printf:    C:h.kernel
  308. o.printf:    DeskLib:h.WimpSWIs
  309. o.printf:    DeskLib:h.Icon
  310. o.printf:    DeskLib:h.DragASpr
  311. o.RadioInEsg:    ^.c.RadioInEsg
  312. o.RadioInEsg:    DeskLib:h.WimpSWIs
  313. o.RadioInEsg:    DeskLib:h.Core
  314. o.RadioInEsg:    C:h.stddef
  315. o.RadioInEsg:    C:DLLLib.h.dll
  316. o.RadioInEsg:    C:h.kernel
  317. o.RadioInEsg:    DeskLib:h.Wimp
  318. o.RadioInEsg:    DeskLib:h.Icon
  319. o.RadioInEsg:    DeskLib:h.DragASpr
  320. o.ScreenPos:    ^.c.ScreenPos
  321. o.ScreenPos:    DeskLib:h.WimpSWIs
  322. o.ScreenPos:    DeskLib:h.Core
  323. o.ScreenPos:    C:h.stddef
  324. o.ScreenPos:    C:DLLLib.h.dll
  325. o.ScreenPos:    C:h.kernel
  326. o.ScreenPos:    DeskLib:h.Wimp
  327. o.ScreenPos:    DeskLib:h.Coord
  328. o.ScreenPos:    DeskLib:h.Icon
  329. o.ScreenPos:    DeskLib:h.DragASpr
  330. o.SelctGroup:    ^.c.SelctGroup
  331. o.SelctGroup:    DeskLib:h.Wimp
  332. o.SelctGroup:    DeskLib:h.Core
  333. o.SelctGroup:    C:h.stddef
  334. o.SelctGroup:    C:DLLLib.h.dll
  335. o.SelctGroup:    C:h.kernel
  336. o.SelctGroup:    DeskLib:h.WimpSWIs
  337. o.SelctGroup:    DeskLib:h.Icon
  338. o.SelctGroup:    DeskLib:h.DragASpr
  339. o.Select:    ^.c.Select
  340. o.Select:    DeskLib:h.Wimp
  341. o.Select:    DeskLib:h.Core
  342. o.Select:    C:h.stddef
  343. o.Select:    C:DLLLib.h.dll
  344. o.Select:    C:h.kernel
  345. o.Select:    DeskLib:h.WimpSWIs
  346. o.Select:    DeskLib:h.Icon
  347. o.Select:    DeskLib:h.DragASpr
  348. o.SetCaret:    ^.c.SetCaret
  349. o.SetCaret:    DeskLib:h.Wimp
  350. o.SetCaret:    DeskLib:h.Core
  351. o.SetCaret:    C:h.stddef
  352. o.SetCaret:    C:DLLLib.h.dll
  353. o.SetCaret:    C:h.kernel
  354. o.SetCaret:    DeskLib:h.WimpSWIs
  355. o.SetCaret:    DeskLib:h.Icon
  356. o.SetCaret:    DeskLib:h.DragASpr
  357. o.SetCol:    ^.c.SetCol
  358. o.SetCol:    DeskLib:h.Wimp
  359. o.SetCol:    DeskLib:h.Core
  360. o.SetCol:    C:h.stddef
  361. o.SetCol:    C:DLLLib.h.dll
  362. o.SetCol:    C:h.kernel
  363. o.SetCol:    DeskLib:h.WimpSWIS
  364. o.SetCol:    DeskLib:h.Icon
  365. o.SetCol:    DeskLib:h.DragASpr
  366. o.SetDouble:    ^.c.SetDouble
  367. o.SetDouble:    C:h.stdio
  368. o.SetDouble:    C:h.string
  369. o.SetDouble:    DeskLib:h.Wimp
  370. o.SetDouble:    DeskLib:h.Core
  371. o.SetDouble:    C:h.stddef
  372. o.SetDouble:    C:DLLLib.h.dll
  373. o.SetDouble:    C:h.kernel
  374. o.SetDouble:    DeskLib:h.WimpSWIs
  375. o.SetDouble:    DeskLib:h.Icon
  376. o.SetDouble:    DeskLib:h.DragASpr
  377. o.SetInteger:    ^.c.SetInteger
  378. o.SetInteger:    C:h.stdio
  379. o.SetInteger:    C:h.string
  380. o.SetInteger:    DeskLib:h.Wimp
  381. o.SetInteger:    DeskLib:h.Core
  382. o.SetInteger:    C:h.stddef
  383. o.SetInteger:    C:DLLLib.h.dll
  384. o.SetInteger:    C:h.kernel
  385. o.SetInteger:    DeskLib:h.WimpSWIs
  386. o.SetInteger:    DeskLib:h.Icon
  387. o.SetInteger:    DeskLib:h.DragASpr
  388. o.SetRadios:    ^.c.SetRadios
  389. o.SetRadios:    DeskLib:h.Wimp
  390. o.SetRadios:    DeskLib:h.Core
  391. o.SetRadios:    C:h.stddef
  392. o.SetRadios:    C:DLLLib.h.dll
  393. o.SetRadios:    C:h.kernel
  394. o.SetRadios:    DeskLib:h.WimpSWIs
  395. o.SetRadios:    DeskLib:h.Icon
  396. o.SetRadios:    DeskLib:h.DragASpr
  397. o.SetSelect:    ^.c.SetSelect
  398. o.SetSelect:    DeskLib:h.Wimp
  399. o.SetSelect:    DeskLib:h.Core
  400. o.SetSelect:    C:h.stddef
  401. o.SetSelect:    C:DLLLib.h.dll
  402. o.SetSelect:    C:h.kernel
  403. o.SetSelect:    DeskLib:h.WimpSWIs
  404. o.SetSelect:    DeskLib:h.Icon
  405. o.SetSelect:    DeskLib:h.DragASpr
  406. o.SetShade:    ^.c.SetShade
  407. o.SetShade:    DeskLib:h.Wimp
  408. o.SetShade:    DeskLib:h.Core
  409. o.SetShade:    C:h.stddef
  410. o.SetShade:    C:DLLLib.h.dll
  411. o.SetShade:    C:h.kernel
  412. o.SetShade:    DeskLib:h.WimpSWIs
  413. o.SetShade:    DeskLib:h.Icon
  414. o.SetShade:    DeskLib:h.DragASpr
  415. o.SetText:    ^.c.SetText
  416. o.SetText:    C:h.string
  417. o.SetText:    DeskLib:h.Wimp
  418. o.SetText:    DeskLib:h.Core
  419. o.SetText:    C:h.stddef
  420. o.SetText:    C:DLLLib.h.dll
  421. o.SetText:    C:h.kernel
  422. o.SetText:    DeskLib:h.WimpSWIs
  423. o.SetText:    DeskLib:h.Coord
  424. o.SetText:    DeskLib:h.Icon
  425. o.SetText:    DeskLib:h.DragASpr
  426. o.SetTextRJ:    ^.c.SetTextRJ
  427. o.SetTextRJ:    C:h.string
  428. o.SetTextRJ:    DeskLib:h.Icon
  429. o.SetTextRJ:    DeskLib:h.Wimp
  430. o.SetTextRJ:    DeskLib:h.Core
  431. o.SetTextRJ:    C:h.stddef
  432. o.SetTextRJ:    C:DLLLib.h.dll
  433. o.SetTextRJ:    C:h.kernel
  434. o.SetTextRJ:    DeskLib:h.DragASpr
  435. o.SetTextRJ:    DeskLib:h.Wimp
  436. o.SetTextRJ:    DeskLib:h.WimpSWIs
  437. o.Shade:    ^.c.Shade
  438. o.Shade:    DeskLib:h.Wimp
  439. o.Shade:    DeskLib:h.Core
  440. o.Shade:    C:h.stddef
  441. o.Shade:    C:DLLLib.h.dll
  442. o.Shade:    C:h.kernel
  443. o.Shade:    DeskLib:h.WimpSWIs
  444. o.Shade:    DeskLib:h.icon
  445. o.Shade:    DeskLib:h.DragASpr
  446. o.ShadeGroup:    ^.c.ShadeGroup
  447. o.ShadeGroup:    DeskLib:h.Wimp
  448. o.ShadeGroup:    DeskLib:h.Core
  449. o.ShadeGroup:    C:h.stddef
  450. o.ShadeGroup:    C:DLLLib.h.dll
  451. o.ShadeGroup:    C:h.kernel
  452. o.ShadeGroup:    DeskLib:h.WimpSWIs
  453. o.ShadeGroup:    DeskLib:h.Icon
  454. o.ShadeGroup:    DeskLib:h.DragASpr
  455. o.Slider:    ^.c.Slider
  456. o.Slider:    C:h.stdlib
  457. o.Slider:    C:h.stdio
  458. o.Slider:    C:h.string
  459. o.Slider:    DeskLib:h.Wimp
  460. o.Slider:    DeskLib:h.Core
  461. o.Slider:    C:h.stddef
  462. o.Slider:    C:DLLLib.h.dll
  463. o.Slider:    C:h.kernel
  464. o.Slider:    DeskLib:h.WimpSWIs
  465. o.Slider:    DeskLib:h.Coord
  466. o.Slider:    DeskLib:h.Icon
  467. o.Slider:    DeskLib:h.DragASpr
  468. o.StartDrag:    ^.c.StartDrag
  469. o.StartDrag:    DeskLib:h.Wimp
  470. o.StartDrag:    DeskLib:h.Core
  471. o.StartDrag:    C:h.stddef
  472. o.StartDrag:    C:DLLLib.h.dll
  473. o.StartDrag:    C:h.kernel
  474. o.StartDrag:    DeskLib:h.WimpSWIS
  475. o.StartDrag:    DeskLib:h.Screen
  476. o.StartDrag:    DeskLib:h.Icon
  477. o.StartDrag:    DeskLib:h.DragASpr
  478. o.Unshade:    ^.c.Unshade
  479. o.Unshade:    DeskLib:h.Wimp
  480. o.Unshade:    DeskLib:h.Core
  481. o.Unshade:    C:h.stddef
  482. o.Unshade:    C:DLLLib.h.dll
  483. o.Unshade:    C:h.kernel
  484. o.Unshade:    DeskLib:h.WimpSWIS
  485. o.Unshade:    DeskLib:h.Icon
  486. o.Unshade:    DeskLib:h.DragASpr
  487. o.WhichRadio:    ^.c.WhichRadio
  488. o.WhichRadio:    DeskLib:h.Wimp
  489. o.WhichRadio:    DeskLib:h.Core
  490. o.WhichRadio:    C:h.stddef
  491. o.WhichRadio:    C:DLLLib.h.dll
  492. o.WhichRadio:    C:h.kernel
  493. o.WhichRadio:    DeskLib:h.WimpSWIs
  494. o.WhichRadio:    DeskLib:h.Icon
  495. o.WhichRadio:    DeskLib:h.DragASpr
  496.